home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / asmsrc / thesource-7.lha / Source / polyfit.lha / polyfit / Makefile < prev    next >
Makefile  |  1990-05-04  |  148b  |  12 lines

  1. D      = -O
  2. CFLAGS = $(D) $(FLOAT)
  3. FLOAT  =
  4. MATH   = -lm
  5.  
  6.  
  7. fit: fit.o mat.o
  8.     cc fit.o mat.o $(D) $(FLOAT) -o fit $(MATH)
  9.  
  10. fit.o: fit.h
  11. mat.o: fit.h
  12.